// ITI1120 first example program
import java.io.*;  // imports input/output classes (e.g. System)
class Prog1          // Prog1 is the name of the class
{
    public static void main (String[] args)
    {
        // code for the main method
        
        System.out.println("ITI1120, first example program");
        System.out.println("*** ITI1120 is GREAT ***");
    }

}

